/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo Styling */
.logo a {
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-decoration: none;
}
.logo span {
  color: white; /* Primary brand color (white) */
}

.logo-wrapper {
  display: flex;
  justify-content: center; 
  align-items: center;
  width: 100%;
  padding-top: 20px; /* Adds some clean space at the very top of your browser */
  margin-bottom: 100px; /* Pulls the logo closer to the background image below it. Adjust this number as needed! */
}


.centered-logo {
  max-width: 400px; /* Shrink or grow this number to change the logo size */
  height: auto;
  z-index: 10; /* Ensures the logo sits neatly on top of your background graphic */
  position: relative;
}

/* Make sure your logo isn't too massive or stretching weirdly */
.main-logo {
  max-width: 400px;/* Adjust this size to what looks best for your logo */
  height: auto;
  display: block;
}


/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff; /* Clean white background */
  padding: 15px 15px;
  box-shadow: 0 15px 15px rgba(0,0,0,0.1); /* Subtle shadow for depth */
  position: sticky;
  top: 0;
  z-index: 100;
  
}

/* Navigation Links List */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 15px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links .cta-btn:hover {
  background-color: #0056b3;
  color: white;
}

/* Hover Effect */
.nav-links a:hover {
  color: #007bff;
}

/* Call to Action (CTA) Button Style */
.nav-links .cta-btn {
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.nav-links .cta-btn:hover {
  background-color: #0056b3;
  color: black;
}

.hero-section {
  display: flex;
  flex-direction: column; /* Stacks the logo on top of the text */
  align-items: center;    /* Centers everything horizontally */
  justify-content: center;
  text-align: center;
  padding: 20px 20px;     /* Gives space at the top and bottom */
}

h1 {
    font-size: 5.0rem;
    color:  red;         /* A gold color to match your theme */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    text-align: center;
    margin:0 auto;
  }

h2 {
      font-size: 5.0rem;
  color:  #01bfff;         /* A gold color to match your theme */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  text-align: center;
  margin:0 auto;
  }

p {
     text-align: center;
  background-color: transparent;
  border-color: rgb(65, 1, 1);
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  font-size: 4.0rem;
  font-weight: bold;
  gap: 100px;
  padding: 30px 30px;
  }

footer, h3 {
      text-align: center;
      background-color: transparent;
      border-color: rgb(65, 1, 1);
      color: red;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 50px;
      
    }

h4 {
    text-align: center;
      background-color: transparent;
      border-color: rgb(65, 1, 1);
      color: white;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
      font-size: 3.5rem;
      font-weight: bold;
      margin-bottom: 50px;
}

.image-container {
    display: flex;
    justify-content: center; /* This aligns the image to the center horizontally */
    align-items: center;     /* This aligns it vertically if the container has height */
    width: 100%;             /* Ensures the container spans the full width of the page */
    margin: 20px 0;          /* Adds some space above and below the image */
}

.image-container img {
    max-width: 100%;         /* Prevents the image from overflowing smaller screens */
    height: auto;            /* Keeps the image proportions perfect */
}
a {
  color: darkred;
}
